home *** CD-ROM | disk | FTP | other *** search
/ 501 Great Games / 501 Great Games - Volume One (2001)(Guildhall Leisure Services).iso / GLOBAL MINES / GlobalMines.exe / 0 / RCDATA / TCUSTOM / TCUSTOM.txt
Text File  |  1998-02-23  |  2KB  |  137 lines

  1. object Custom: TCustom
  2.   Left = 328
  3.   Top = 182
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Custom'
  7.   ClientHeight = 117
  8.   ClientWidth = 161
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   Scaled = False
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Label1: TLabel
  20.     Left = 25
  21.     Top = 12
  22.     Width = 31
  23.     Height = 13
  24.     Alignment = taRightJustify
  25.     Caption = 'Width:'
  26.   end
  27.   object Label2: TLabel
  28.     Left = 22
  29.     Top = 36
  30.     Width = 34
  31.     Height = 13
  32.     Alignment = taRightJustify
  33.     Caption = 'Height:'
  34.   end
  35.   object Label3: TLabel
  36.     Left = 25
  37.     Top = 60
  38.     Width = 31
  39.     Height = 13
  40.     Alignment = taRightJustify
  41.     Caption = 'Mines:'
  42.   end
  43.   object CustomBoxLine: TBevel
  44.     Left = -4
  45.     Top = 82
  46.     Width = 169
  47.     Height = 2
  48.     Shape = bsTopLine
  49.   end
  50.   object ok: TButton
  51.     Left = 83
  52.     Top = 90
  53.     Width = 75
  54.     Height = 25
  55.     Caption = 'OK'
  56.     Default = True
  57.     ModalResult = 1
  58.     TabOrder = 0
  59.   end
  60.   object CancelButton: TButton
  61.     Left = 3
  62.     Top = 90
  63.     Width = 75
  64.     Height = 25
  65.     Cancel = True
  66.     Caption = 'Cancel'
  67.     ModalResult = 2
  68.     TabOrder = 1
  69.     OnClick = CancelButtonClick
  70.   end
  71.   object WidthBox: TEdit
  72.     Left = 67
  73.     Top = 8
  74.     Width = 57
  75.     Height = 21
  76.     MaxLength = 3
  77.     TabOrder = 2
  78.     Text = '8'
  79.     OnChange = BoxChange
  80.   end
  81.   object HeightBox: TEdit
  82.     Left = 67
  83.     Top = 32
  84.     Width = 57
  85.     Height = 21
  86.     MaxLength = 3
  87.     TabOrder = 3
  88.     Text = '8'
  89.     OnChange = BoxChange
  90.   end
  91.   object BombBox: TEdit
  92.     Left = 67
  93.     Top = 56
  94.     Width = 57
  95.     Height = 21
  96.     MaxLength = 3
  97.     TabOrder = 4
  98.     Text = '0'
  99.     OnChange = BoxChange
  100.   end
  101.   object WUpDown: TUpDown
  102.     Left = 124
  103.     Top = 8
  104.     Width = 12
  105.     Height = 21
  106.     Associate = WidthBox
  107.     Min = 8
  108.     Max = 48
  109.     Position = 8
  110.     TabOrder = 5
  111.     Wrap = False
  112.   end
  113.   object HUpDown: TUpDown
  114.     Left = 124
  115.     Top = 32
  116.     Width = 12
  117.     Height = 21
  118.     Associate = HeightBox
  119.     Min = 8
  120.     Max = 48
  121.     Position = 8
  122.     TabOrder = 6
  123.     Wrap = False
  124.   end
  125.   object MUpDown: TUpDown
  126.     Left = 124
  127.     Top = 56
  128.     Width = 12
  129.     Height = 21
  130.     Associate = BombBox
  131.     Min = 0
  132.     Position = 0
  133.     TabOrder = 7
  134.     Wrap = False
  135.   end
  136. end
  137.